home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d20 / rfa200.arc / MANUAL.BAT < prev    next >
DOS Batch File  |  1991-07-13  |  1KB  |  31 lines

  1. @echo off
  2. echo ####################################################################
  3. echo #                                                                  #
  4. echo #                     RFA manual print utility                     #
  5. echo #                 --------------------------------                 #
  6. echo #                                                                  #
  7. echo #    This batch will print the file RFA.DOC using the wonderful    #
  8. echo #    SAVETREEs utility, and  redirectioning the TYPE command to    #
  9. echo #    the standard printer (PRN:).                                  #
  10. echo #                                                                  #
  11. echo #    Press any key for more infos about SAVTREEs.                  #
  12. echo #                                                                  #
  13. echo ####################################################################
  14. pause >nul
  15. SAVETREE
  16. GETCH Do you want to print RFA.DOC using SAVETREEs (y/n) ?,y,Y,n,N; /U
  17. if errorlevel 89 goto YES
  18. if errorlevel 78 goto NO
  19. :YES
  20. SAVETREE rfa.doc
  21. echo Please, insert the paper and switch the printer on
  22. pause
  23. type RFA.rgt >prn:
  24. echo Please, turn back the paper
  25. pause
  26. type RFA.lft >prn:
  27. del RFA.rgt
  28. del RFA.lft
  29. echo Done!
  30. :NO
  31.